/* Dummy article styles */

  /* Sticky ad styles */
  .sticky-ad {
    position: sticky;
    top: 0;
  }

  section {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section:nth-child(odd) {
    background-color: #f9f9f9;
}

section h1,h2,h3 {
    color: #3498db;
}

section p {
    line-height: 1.6;
}
.click-to-tweet {
    text-align: center;
    margin: 20px 0;
}

.click-to-tweet a {
    background-color: #55acee;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

.adsense-ad {
    text-align: center;
    margin: 20px 0;
    color: #555;
}

.subscription-form {
    text-align: center;
    margin: 20px 0;
}

.subscription-form iframe {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.subscription-form-note {
    margin-top: 10px;
    color: #888;
}
.header-container {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 600px;
    position: relative;
    animation: fadeIn 1s ease-in-out;
    cursor: pointer;
    text-align: center;
    color: #333;
}


h1 {
    margin: 0;
    font-size: 3em;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
    margin-top: 0;
}

.share-button {
    background-color: #3498db;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.share-button:hover {
    background-color: #2980b9;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.social-icons.show {
    opacity: 1;
    visibility: visible;
}

.social-icon {
    font-size: 24px;
    color: #3498db;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

.social-icon:hover {
    color: #2980b9;
}

.responsive-image-container {
    position: relative;
    width: 100%;
    max-width: 600px; /* Adjust the max-width as needed */
    margin-top: 20px;
    border-radius: 8px;
}

.responsive-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.copyright {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    transform: rotate(0deg);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px;
    border-radius: 5px;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Mobile Styles */
@media screen and (max-width: 480px) {
    .header-container {
        width: 90%;
    }

    .share-button {
        font-size: 14px;
    }

    .social-icon {
        font-size: 20px;
    }
}     